home *** CD-ROM | disk | FTP | other *** search
/ Visual Cafe 3 / Visual Cafe 3.ISO / Vcafe / Source.bin / DebugWizardController.java < prev    next >
Text File  |  1998-08-21  |  4KB  |  171 lines

  1. /*
  2.  * DebugWizardController.java
  3.  */
  4.  
  5. package symantec.itools.awt;
  6.  
  7. import java.awt.Component;
  8.  
  9. public class DebugWizardController extends SimpleWizardController
  10. {
  11.     public DebugWizardController(WizardInterface wizard)
  12.     {
  13.         super(wizard);
  14.     }
  15.  
  16.     public void doPrepare()
  17.     {
  18.         debug("doPrepare");
  19.         super.doPrepare();
  20.     }
  21.  
  22.     public void preparePage(Component comp, int action)
  23.     {
  24.         debug("preparePage:" + action);
  25.         super.preparePage(comp, action);
  26.     }
  27.  
  28.     public void pageShown(Component comp)
  29.     {
  30.         debug("pageShown");
  31.         super.pageShown(comp);
  32.     }
  33.  
  34.     public boolean validatePage(Component comp, Component target, int action)
  35.     {
  36.         debug("validatePage:" + action);
  37.         return super.validatePage(comp, target, action);
  38.     }
  39.  
  40.     public void pageHidden(Component comp)
  41.     {
  42.         debug("pageHidden");
  43.         super.pageHidden(comp);
  44.     }
  45.  
  46.     public void doFinish()
  47.     {
  48.         debug("doFinish");
  49.         super.doFinish();
  50.     }
  51.  
  52.     public void doCancel()
  53.     {
  54.         debug("doCancel");
  55.         super.doCancel();
  56.     }
  57.  
  58.     public void doHelp()
  59.     {
  60.         debug("doHelp");
  61.         super.doHelp();
  62.     }
  63.  
  64.     public boolean isPreviousEnabled()
  65.     {
  66.         debug("isPreviousEnabled");
  67.         return super.isPreviousEnabled();
  68.     }
  69.  
  70.     public boolean isNextEnabled()
  71.     {
  72.         debug("isNextEnabled");
  73.         return super.isNextEnabled();
  74.     }
  75.  
  76.     public boolean isFinishEnabled()
  77.     {
  78.         debug("isFinishEnabled");
  79.         return super.isFinishEnabled();
  80.     }
  81.  
  82.     public boolean isCancelEnabled()
  83.     {
  84.         debug("isCancelEnabled");
  85.         return super.isCancelEnabled();
  86.     }
  87.  
  88.     public boolean isHelpEnabled()
  89.     {
  90.         debug("isHelpEnabled");
  91.         return super.isHelpEnabled();
  92.     }
  93.  
  94.     public Component getPreviousPage()
  95.     {
  96.         debug("getPreviousPage");
  97.         return super.getPreviousPage();
  98.     }
  99.  
  100.     public Component getNextPage()
  101.     {
  102.         debug("getNextPage");
  103.         return super.getNextPage();
  104.     }
  105.  
  106.     public void setPreviousPageIndex(int index)
  107.     {
  108.         debug("setPreviousPageIndex: " + index);
  109.         super.setPreviousPageIndex(index);
  110.     }
  111.  
  112.     public void setNextPageIndex(int index)
  113.     {
  114.         debug("setNextPageIndex: " + index);
  115.         super.setNextPageIndex(index);
  116.     }
  117.  
  118.     public void setPreviousPage(Component comp)
  119.     {
  120.         debug("setPreviousPage");
  121.         super.setPreviousPage(comp);
  122.     }
  123.  
  124.     public void setNextPage(Component comp)
  125.     {
  126.         debug("setNextPage");
  127.         super.setNextPage(comp);
  128.     }
  129.     
  130.     public void setPreviousEnabled(boolean status)
  131.     {
  132.         debug("setPreviousEnabled");
  133.         super.setPreviousEnabled(status);
  134.     }
  135.     
  136.     public void setNextEnabled(boolean status)
  137.     {
  138.         debug("setNextEnabled");
  139.         super.setNextEnabled(status);
  140.     }
  141.     
  142.     public void setFinishEnabled(boolean status)
  143.     {
  144.         debug("setFinishEnabled");
  145.         super.setFinishEnabled(status);
  146.     }
  147.     
  148.     public void setCancelEnabled(boolean status)
  149.     {
  150.         debug("setCancelEnabled");
  151.         super.setCancelEnabled(status);
  152.     }
  153.     
  154.     public void setHelpEnabled(boolean status)
  155.     {
  156.         debug("setHelpEnabled");
  157.         super.setHelpEnabled(status);
  158.     }
  159.  
  160.     public void resetChainInfo()
  161.     {
  162.         debug("resetChainInfo");
  163.         super.resetChainInfo();
  164.     }
  165.  
  166.     private void debug(String s)
  167.     {
  168.         System.err.println("DebugWizardController:: " + s);
  169.     }
  170. }
  171.